home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 023a / hem12.zip / EBACKUP.BAT < prev    next >
DOS Batch File  |  1990-02-09  |  391b  |  11 lines

  1. echo off
  2. echo This batch file will compress the expense files using the
  3. echo command PKZIP from PKWARE then will copy the compressed 
  4. echo file to drive A.  You may modify this file "EBACKUP.BAT"
  5. echo if you wish to customize the backup process.
  6. echo
  7. pkzip -a -es expense.zip expense.* billing.* mileage.*
  8. echo Place a formatted floppy into drive A: then
  9. pause
  10. copy expense.zip a:
  11.